home *** CD-ROM | disk | FTP | other *** search
- /*---------------------------------------------------------------------------*/
- /* */
- /* hcnLine - This REXX Macro is called when the report sends out a LINE */
- /* Item, This is called for ALL types of ITEMS */
- /* */
- /* Valid Variables are: */
- /* hcDeep hclDoc hclPhysical hclFileSize */
- /* hclHTMLTag hclFileType hclMatched hclLocalFound */
- /* hclServerRoot hclOffSite hclParent hclAccessCount */
- /* hcpDoc hcpPhysical hcpFileSize hcpHTMLTag */
- /* hcpFileType hcpMatched hcpLocalFound hcpServerRoot */
- /* hcpOffSite hcpAccessCount */
- /* */
- /*---------------------------------------------------------------------------*/
-
-
- IF (hclMatched == 'No' & hclFileType <> 'HTMLTAG' & hclFileType <> 'DIRECTORY') THEN
- DO
-
- spaces = ''
- len = LENGTH(hclPhysical)
- IF (len < 60) THEN
- spaces = COPIES(' ', 60 - len)
- line = hclPhysical || spaces || '(' || hclDoc || ') '
-
- Call RxhcLineOut line
- END
-
- RETURN
-